home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / palmos.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  64 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. ''' Python Character Mapping Codec for PalmOS 3.5.
  5.  
  6. Written by Sjoerd Mullender (sjoerd@acm.org); based on iso8859_15.py.
  7.  
  8. '''
  9. import codecs
  10.  
  11. class Codec(codecs.Codec):
  12.     
  13.     def encode(self, input, errors = 'strict'):
  14.         return codecs.charmap_encode(input, errors, encoding_map)
  15.  
  16.     
  17.     def decode(self, input, errors = 'strict'):
  18.         return codecs.charmap_decode(input, errors, decoding_map)
  19.  
  20.  
  21.  
  22. class StreamWriter(Codec, codecs.StreamWriter):
  23.     pass
  24.  
  25.  
  26. class StreamReader(Codec, codecs.StreamReader):
  27.     pass
  28.  
  29.  
  30. def getregentry():
  31.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  32.  
  33. decoding_map = codecs.make_identity_dict(range(256))
  34. decoding_map.update({
  35.     128: 8364,
  36.     130: 8218,
  37.     131: 402,
  38.     132: 8222,
  39.     133: 8230,
  40.     134: 8224,
  41.     135: 8225,
  42.     136: 710,
  43.     137: 8240,
  44.     138: 352,
  45.     139: 8249,
  46.     140: 338,
  47.     141: 9830,
  48.     142: 9827,
  49.     143: 9829,
  50.     144: 9824,
  51.     145: 8216,
  52.     146: 8217,
  53.     147: 8220,
  54.     148: 8221,
  55.     149: 8226,
  56.     150: 8211,
  57.     151: 8212,
  58.     152: 732,
  59.     153: 8482,
  60.     154: 353,
  61.     156: 339,
  62.     159: 376 })
  63. encoding_map = codecs.make_encoding_map(decoding_map)
  64.